Extension point configuration
In component org.nuxeo.runtime.aws.AWSConfigurationService
Documentation
Used to register AWS configurations. Example:
<configuration id="myconfig">
<accessKeyId>MY_ACCESS_KEY</accessKeyId>
<secretKey>MY_SECRET_KEY</secretKey>
<region>MY_REGION</region>
</configuration>
If the configuration id is not present, "default" is used.
To look up a configuration, use new NuxeoAWSCredentialsProvider("myconfig") and new NuxeoAWSRegionProvider("myconfig"). Alternatively, you can use the service AWSConfigurationService directly (but it just looks up provided configuration, it doesn't fall back to the AWS SDK default behavior).
Contribution Descriptors
- Class: org.nuxeo.runtime.aws.AWSConfigurationDescriptor
Existing Contributions
Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.
-
<extension point="configuration" target="org.nuxeo.runtime.aws.AWSConfigurationService"> <configuration> </configuration> </extension>